home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Demos / Bowers Development / AppMaker 2.0b5 / Examples / ODF / AMSample / Sources / Menus.fr < prev    next >
Encoding:
Text File  |  1996-06-03  |  2.1 KB  |  74 lines  |  [TEXT/CWIE]

  1. //========================================================================================
  2. //
  3. //    File:                Menus.fr
  4. //    Release Version:    $ ODF 1 $
  5. //
  6. //    Copyright:    (c) 1993 - 1996 by Apple Computer, Inc., all rights reserved.
  7. //
  8. //========================================================================================
  9.  
  10. #ifndef FWRESFIL_K
  11. #include "FWResFil.k"
  12. #endif
  13.  
  14. #ifndef DEFINES_K
  15. #include "Defines.k"
  16. #endif
  17.  
  18. #ifndef FWMENUS_FR
  19. #include "FWMenus.fr"
  20. #endif
  21.  
  22. //----------------------------------------------------------------------------
  23. //    Strings for AMSample Part (Frame)
  24. //----------------------------------------------------------------------------
  25. resource FW_kMULTISTRING (kAMSamplePartStrings)
  26. {
  27.     kFirstString,        "Welcome to ODF on ";
  28.     kMacString,            "Macintosh";
  29.     kWinString,            "Windows";
  30.     kBlankString,        "This part intentionally left blank";
  31. }
  32.  
  33. //----------------------------------------------------------------------------
  34. //    Strings for Undo and Redo menu items
  35. //----------------------------------------------------------------------------
  36.  
  37. resource FW_kMULTISTRING (kAMSampleUndoStrings)
  38. {
  39.     kUndoDragTextMsg,    "Undo Text Removal";
  40.     kRedoDragTextMsg,    "Redo Text Removal";
  41.     kUndoDropTextMsg,    "Undo Text Drop";
  42.     kRedoDropTextMsg,    "Redo Text Drop";
  43.     kUndoClearTextMsg,    "Undo Text Clear";
  44.     kRedoClearTextMsg,    "Redo Text Clear";
  45.     kUndoCutTextMsg,    "Undo Text Cut";
  46.     kRedoCutTextMsg,    "Redo Text Cut";
  47.     kUndoPasteTextMsg,    "Undo Text Paste";
  48.     kRedoPasteTextMsg,    "Redo Text Paste";
  49. }
  50.  
  51. //----------------------------------------------------------------------------
  52. //    Menus
  53. //----------------------------------------------------------------------------
  54.  
  55.  
  56. //----------------------------------------------------------------------------
  57. //    Strings for AppMaker Menu
  58. //----------------------------------------------------------------------------
  59. resource FW_RMenuBar(kMenuBar)
  60. {
  61.     {
  62.         FW_RPullDownMenu
  63.         (
  64.             "AppMaker"
  65.             {
  66.                 FW_RTextItem(cStuffCommand, FW_kNoKeyEquivalent, "Stuff"),
  67.                 FW_RTextItem(cMoreStuffCommand, FW_kNoKeyEquivalent, "More Stuff"),
  68.                 FW_RSeparatorItem(),
  69.                 FW_RTextItem(cStillMoreCommand, FW_kNoKeyEquivalent, "Still More")
  70.             }
  71.         )
  72.     }
  73. };
  74.